home *** CD-ROM | disk | FTP | other *** search
/ The Rolling Stones: Shine a Light (Press Kit) / Shine a Light (Press Kit).iso / pc / program.dxr / Internal_24_Back to Preview.ls < prev    next >
Encoding:
Text File  |  2008-03-03  |  349 b   |  21 lines

  1. on mouseWithin me
  2.   cursor(280)
  3. end
  4.  
  5. on mouseLeave me
  6.   cursor(0)
  7. end
  8.  
  9. on mouseUp me
  10.   cursor(0)
  11.   sound(3).play(member("Click"))
  12.   case the frameLabel of
  13.     "C01", "C02", "C03", "C04", "C05":
  14.       go("Preview_1A")
  15.     "C06", "C07", "C08", "C09", "C10":
  16.       go("Preview_2A")
  17.     "C11", "C12", "C13", "C14":
  18.       go("Preview_3A")
  19.   end case
  20. end
  21.